Batch 3 - Class 252 - Induction II and Recursion


(Zoom)
Pre-Class Exercise (Covered in class)

Attendance    Mihir, Advay, Vansh, Raghav, Angad, Ayush, Aneesh, Shikhar, Anshi, Rohan, Rhea, Rehaan, Aashvi, SiddharthT, Arjun, Harshiet, Vivaan

Class Notes: (Repeat from Class 143, 144)

Review the concept of Induction:


Recursion means solving by self reference. Lets take an example.
FUNCTION isAJew(person):
IF person is Abraham's wife Sarah, THEN:
return true
ELSE:
return isAJew(person's mother)
END IF
FUNCTION isAJew(person):
IF person is Abraham's wife Sarah, THEN:
return true
ELSE IF person was born before Sarah was born, THEN:
return false
ELSE:
return isAJew(person's mother)
END IF

Review of Computational Thinking - Key elements 
Abstraction: There is a graph, with nodes and edges. Abstraction involves focusing on what is important and ignoring the rest - for example, we have not shown how much each tourist attraction cost for entry.
Generalization: Both problems are similar problems - ask students in what respect. Both problems involved going from one point to all other points and coming back to the original problem.
Algorithm: The method to solve the problem. How did you go about traversing the graph? For this kind of the problem, depth first is an intuitive route - you go down a path as far as you can and you backtrack if its the wrong path and try another one. 
Pattern Matching: It seems that we can solve any "route finding" problem by drawing a graph for that - this is pattern matching.

Relate to the above in context of the knight's tour, tour guide and circular numbers discussed earlier and search (directory, guess who, 20 questions) discussed last week. We also learned that searching through a sorted list is much easier than jumbled lists, and mechanisms of sorting such as bubble sort, merge sort.

Tower of Hanoi
 
FUNCTION MoveTower(disk, source, dest, spare):
IF disk == 0, THEN:
move disk from source to dest
ELSE:
MoveTower(disk - 1, source, spare, dest) // Step 1 above
move disk from source to dest // Step 2 above
MoveTower(disk - 1, spare, dest, source) // Step 3 above
END IF

Homework


References:
Mathematical Circles (Russian Experience), by Dmitri Fomin, Sergey Genkin, Ilia Itenberg
https://www.cs.cmu.edu/~cburch/survey/recurse/recursion.html